项目要个能改写脚本的内容的功能 并且前端采用vue 编辑器可编辑
我后端写了个这样的 工具类
前端编辑器的代码在这
https://blog.csdn.net/weixin_43569255/article/details/106231388
package com.platform.modules.napoleon.utils;
import org.springframework.core.io.FileSystemResource;
import java.io.*;
import java.util.LinkedList;
public class SheelUtils {
public static final String PATH="XXXXXXXX";
/**
* 获取路径下所有文件夹
* @param path
* @return
*/
public static LinkedList<String> getFilesPath(String path) {
LinkedList<String> list=new LinkedList<>();
//考虑到会打成jar包发布 new File()不能使用改用FileSystemResource
File file =new FileSystemResource(path).getFile();
// 获取路径下的所有文件及文件夹
File[] files = file.listFiles();
for (int i = 0; i < files.length; i++) {
// 如果还是文件夹 递归获取里面的文件 文件夹
if (files[i].isDirectory()) {
list.add(files[i].getPath());
list.addAll(getFilesPath(files[i].getPath()));
}
}
return list;
}
/**
* 获取path下的所有文件名列表
* @param path
* @return
*/
public static LinkedList getSheelList(String path) {
LinkedList<String> list=new LinkedList<>();
File file = new FileSystemResource(path).getFile();
// 获取路径下的所有文件
File[] files = file.listFiles();
if(file==null){
return null;
}
for (int i = 0; i < files.length; i++) {
// 添加文件,非文件夹
if (!files[i].isDirectory()) {
list.add(files[i].getPath());
}
}
return list;
}
/**
* 将内容写进去
* @param path
* @param text
* @return
* @throws IOException
*/
public static Boolean write(String path,String text) throws IOException {
File file = new FileSystemResource(path).getFile();
OutputStream outPutStream = null;
try{
outPutStream = new FileOutputStream(file);
StringBuilder stringBuilder = new StringBuilder();//使用长度可变的字符串对象;
stringBuilder.append(text);//追加文件内容
String context = stringBuilder.toString();//将可变字符串变为固定长度的字符串,方便下面的转码;
byte[] bytes = context.getBytes("UTF-8");//因为中文可能会乱码,这里使用了转码,转成UTF-8;
outPutStream.write(bytes);//开始写入内容到文件;
return true;
}catch(Exception e){
e.printStackTrace();//获取异常
return false;
}finally {
if (outPutStream != null) {
try {
outPutStream.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
}
/**
* 根据路径读取文件内容
* @param fileName
* @return
*/
public static String read(String fileName) {
File file = new FileSystemResource(fileName).getFile();
BufferedReader reader = null;
StringBuffer sbf = new StringBuffer();
try {
reader = new BufferedReader(new FileReader(file));
String tempStr;
while ((tempStr = reader.readLine()) != null) {
sbf.append(tempStr);
sbf.append("\r\n"); //为了解决换行问题
}
reader.close();
return sbf.toString();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
return sbf.toString();
}
}